home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / pdb.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  34KB  |  1,130 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''A Python debugger.'''
  5. import sys
  6. import linecache
  7. import cmd
  8. import bdb
  9. from repr import Repr
  10. import os
  11. import re
  12. import pprint
  13. import traceback
  14. _repr = Repr()
  15. _repr.maxstring = 200
  16. _saferepr = _repr.repr
  17. __all__ = [
  18.     'run',
  19.     'pm',
  20.     'Pdb',
  21.     'runeval',
  22.     'runctx',
  23.     'runcall',
  24.     'set_trace',
  25.     'post_mortem',
  26.     'help']
  27.  
  28. def find_function(funcname, filename):
  29.     cre = re.compile('def\\s+%s\\s*[(]' % funcname)
  30.     
  31.     try:
  32.         fp = open(filename)
  33.     except IOError:
  34.         return None
  35.  
  36.     lineno = 1
  37.     answer = None
  38.     while None:
  39.         line = fp.readline()
  40.         if line == '':
  41.             break
  42.         
  43.         if cre.match(line):
  44.             answer = (funcname, filename, lineno)
  45.             break
  46.         
  47.         lineno = lineno + 1
  48.     fp.close()
  49.     return answer
  50.  
  51. line_prefix = '\n-> '
  52.  
  53. class Pdb(bdb.Bdb, cmd.Cmd):
  54.     
  55.     def __init__(self):
  56.         bdb.Bdb.__init__(self)
  57.         cmd.Cmd.__init__(self)
  58.         self.prompt = '(Pdb) '
  59.         self.aliases = { }
  60.         self.mainpyfile = ''
  61.         self._wait_for_mainpyfile = 0
  62.         
  63.         try:
  64.             import readline
  65.         except ImportError:
  66.             pass
  67.  
  68.         self.rcLines = []
  69.         if 'HOME' in os.environ:
  70.             envHome = os.environ['HOME']
  71.             
  72.             try:
  73.                 rcFile = open(os.path.join(envHome, '.pdbrc'))
  74.             except IOError:
  75.                 pass
  76.  
  77.             for line in rcFile.readlines():
  78.                 self.rcLines.append(line)
  79.             
  80.             rcFile.close()
  81.         
  82.         
  83.         try:
  84.             rcFile = open('.pdbrc')
  85.         except IOError:
  86.             pass
  87.  
  88.         for line in rcFile.readlines():
  89.             self.rcLines.append(line)
  90.         
  91.         rcFile.close()
  92.  
  93.     
  94.     def reset(self):
  95.         bdb.Bdb.reset(self)
  96.         self.forget()
  97.  
  98.     
  99.     def forget(self):
  100.         self.lineno = None
  101.         self.stack = []
  102.         self.curindex = 0
  103.         self.curframe = None
  104.  
  105.     
  106.     def setup(self, f, t):
  107.         self.forget()
  108.         (self.stack, self.curindex) = self.get_stack(f, t)
  109.         self.curframe = self.stack[self.curindex][0]
  110.         self.execRcLines()
  111.  
  112.     
  113.     def execRcLines(self):
  114.         if self.rcLines:
  115.             rcLines = self.rcLines
  116.             self.rcLines = []
  117.             for line in rcLines:
  118.                 line = line[:-1]
  119.                 if len(line) > 0 and line[0] != '#':
  120.                     self.onecmd(line)
  121.                     continue
  122.             
  123.         
  124.  
  125.     
  126.     def user_call(self, frame, argument_list):
  127.         '''This method is called when there is the remote possibility
  128.         that we ever need to stop in this function.'''
  129.         if self._wait_for_mainpyfile:
  130.             return None
  131.         
  132.         if self.stop_here(frame):
  133.             print '--Call--'
  134.             self.interaction(frame, None)
  135.         
  136.  
  137.     
  138.     def user_line(self, frame):
  139.         '''This function is called when we stop or break at this line.'''
  140.         if self._wait_for_mainpyfile:
  141.             if self.mainpyfile != self.canonic(frame.f_code.co_filename) or frame.f_lineno <= 0:
  142.                 return None
  143.             
  144.             self._wait_for_mainpyfile = 0
  145.         
  146.         self.interaction(frame, None)
  147.  
  148.     
  149.     def user_return(self, frame, return_value):
  150.         '''This function is called when a return trap is set here.'''
  151.         frame.f_locals['__return__'] = return_value
  152.         print '--Return--'
  153.         self.interaction(frame, None)
  154.  
  155.     
  156.     def user_exception(self, frame, .4):
  157.         '''This function is called if an exception occurs,
  158.         but only if we are to stop at or just below this level.'''
  159.         (exc_type, exc_value, exc_traceback) = .4
  160.         frame.f_locals['__exception__'] = (exc_type, exc_value)
  161.         if type(exc_type) == type(''):
  162.             exc_type_name = exc_type
  163.         else:
  164.             exc_type_name = exc_type.__name__
  165.         print exc_type_name + ':', _saferepr(exc_value)
  166.         self.interaction(frame, exc_traceback)
  167.  
  168.     
  169.     def interaction(self, frame, traceback):
  170.         self.setup(frame, traceback)
  171.         self.print_stack_entry(self.stack[self.curindex])
  172.         self.cmdloop()
  173.         self.forget()
  174.  
  175.     
  176.     def default(self, line):
  177.         if line[:1] == '!':
  178.             line = line[1:]
  179.         
  180.         locals = self.curframe.f_locals
  181.         globals = self.curframe.f_globals
  182.         
  183.         try:
  184.             code = compile(line + '\n', '<stdin>', 'single')
  185.             exec code in globals, locals
  186.         except:
  187.             (t, v) = sys.exc_info()[:2]
  188.             if type(t) == type(''):
  189.                 exc_type_name = t
  190.             else:
  191.                 exc_type_name = t.__name__
  192.             print '***', exc_type_name + ':', v
  193.  
  194.  
  195.     
  196.     def precmd(self, line):
  197.         """Handle alias expansion and ';;' separator."""
  198.         if not line.strip():
  199.             return line
  200.         
  201.         args = line.split()
  202.         while args[0] in self.aliases:
  203.             line = self.aliases[args[0]]
  204.             ii = 1
  205.             for tmpArg in args[1:]:
  206.                 line = line.replace('%' + str(ii), tmpArg)
  207.                 ii = ii + 1
  208.             
  209.             line = line.replace('%*', ' '.join(args[1:]))
  210.             args = line.split()
  211.         if args[0] != 'alias':
  212.             marker = line.find(';;')
  213.             if marker >= 0:
  214.                 next = line[marker + 2:].lstrip()
  215.                 self.cmdqueue.append(next)
  216.                 line = line[:marker].rstrip()
  217.             
  218.         
  219.         return line
  220.  
  221.     do_h = cmd.Cmd.do_help
  222.     
  223.     def do_break(self, arg, temporary = 0):
  224.         if not arg:
  225.             if self.breaks:
  226.                 print 'Num Type         Disp Enb   Where'
  227.                 for bp in bdb.Breakpoint.bpbynumber:
  228.                     if bp:
  229.                         bp.bpprint()
  230.                         continue
  231.                 
  232.             
  233.             return None
  234.         
  235.         filename = None
  236.         lineno = None
  237.         cond = None
  238.         comma = arg.find(',')
  239.         if comma > 0:
  240.             cond = arg[comma + 1:].lstrip()
  241.             arg = arg[:comma].rstrip()
  242.         
  243.         colon = arg.rfind(':')
  244.         funcname = None
  245.         if colon >= 0:
  246.             filename = arg[:colon].rstrip()
  247.             f = self.lookupmodule(filename)
  248.             if not f:
  249.                 print '*** ', repr(filename), 'not found from sys.path'
  250.                 return None
  251.             else:
  252.                 filename = f
  253.             arg = arg[colon + 1:].lstrip()
  254.             
  255.             try:
  256.                 lineno = int(arg)
  257.             except ValueError:
  258.                 msg = None
  259.                 print '*** Bad lineno:', arg
  260.                 return None
  261.             except:
  262.                 None<EXCEPTION MATCH>ValueError
  263.             
  264.  
  265.         None<EXCEPTION MATCH>ValueError
  266.         
  267.         try:
  268.             lineno = int(arg)
  269.         except ValueError:
  270.             
  271.             try:
  272.                 func = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  273.             except:
  274.                 func = arg
  275.  
  276.             
  277.             try:
  278.                 if hasattr(func, 'im_func'):
  279.                     func = func.im_func
  280.                 
  281.                 code = func.func_code
  282.                 funcname = code.co_name
  283.                 lineno = code.co_firstlineno
  284.                 filename = code.co_filename
  285.             (ok, filename, ln) = self.lineinfo(arg)
  286.             if not ok:
  287.                 print '*** The specified object', repr(arg), 'is not a function'
  288.                 print 'or was not found along sys.path.'
  289.                 return None
  290.             
  291.  
  292.             funcname = ok
  293.             lineno = int(ln)
  294.         
  295.  
  296.         if not filename:
  297.             filename = self.defaultFile()
  298.         
  299.         line = self.checkline(filename, lineno)
  300.         if line:
  301.             err = self.set_break(filename, line, temporary, cond, funcname)
  302.             if err:
  303.                 print '***', err
  304.             else:
  305.                 bp = self.get_breaks(filename, line)[-1]
  306.                 print 'Breakpoint %d at %s:%d' % (bp.number, bp.file, bp.line)
  307.         
  308.  
  309.     
  310.     def defaultFile(self):
  311.         '''Produce a reasonable default.'''
  312.         filename = self.curframe.f_code.co_filename
  313.         if filename == '<string>' and self.mainpyfile:
  314.             filename = self.mainpyfile
  315.         
  316.         return filename
  317.  
  318.     do_b = do_break
  319.     
  320.     def do_tbreak(self, arg):
  321.         self.do_break(arg, 1)
  322.  
  323.     
  324.     def lineinfo(self, identifier):
  325.         failed = (None, None, None)
  326.         idstring = identifier.split("'")
  327.         if len(idstring) == 1:
  328.             id = idstring[0].strip()
  329.         elif len(idstring) == 3:
  330.             id = idstring[1].strip()
  331.         else:
  332.             return failed
  333.         if id == '':
  334.             return failed
  335.         
  336.         parts = id.split('.')
  337.         if parts[0] == 'self':
  338.             del parts[0]
  339.             if len(parts) == 0:
  340.                 return failed
  341.             
  342.         
  343.         fname = self.defaultFile()
  344.         if len(parts) == 1:
  345.             item = parts[0]
  346.         else:
  347.             f = self.lookupmodule(parts[0])
  348.             if f:
  349.                 fname = f
  350.             
  351.             item = parts[1]
  352.         answer = find_function(item, fname)
  353.         if not answer:
  354.             pass
  355.         return failed
  356.  
  357.     
  358.     def checkline(self, filename, lineno):
  359.         '''Check whether specified line seems to be executable.
  360.  
  361.         Return `lineno` if it is, 0 if not (e.g. a docstring, comment, blank
  362.         line or EOF). Warning: testing is not comprehensive.
  363.         '''
  364.         line = linecache.getline(filename, lineno)
  365.         if not line:
  366.             print 'End of file'
  367.             return 0
  368.         
  369.         line = line.strip()
  370.         if not line and line[0] == '#' and line[:3] == '"""' or line[:3] == "'''":
  371.             print '*** Blank or comment'
  372.             return 0
  373.         
  374.         return lineno
  375.  
  376.     
  377.     def do_enable(self, arg):
  378.         args = arg.split()
  379.         for i in args:
  380.             
  381.             try:
  382.                 i = int(i)
  383.             except ValueError:
  384.                 print 'Breakpoint index %r is not a number' % i
  385.                 continue
  386.  
  387.             if i <= i:
  388.                 pass
  389.             elif not i < len(bdb.Breakpoint.bpbynumber):
  390.                 print 'No breakpoint numbered', i
  391.                 continue
  392.             
  393.             bp = bdb.Breakpoint.bpbynumber[i]
  394.             if bp:
  395.                 bp.enable()
  396.                 continue
  397.             0
  398.         
  399.  
  400.     
  401.     def do_disable(self, arg):
  402.         args = arg.split()
  403.         for i in args:
  404.             
  405.             try:
  406.                 i = int(i)
  407.             except ValueError:
  408.                 print 'Breakpoint index %r is not a number' % i
  409.                 continue
  410.  
  411.             if i <= i:
  412.                 pass
  413.             elif not i < len(bdb.Breakpoint.bpbynumber):
  414.                 print 'No breakpoint numbered', i
  415.                 continue
  416.             
  417.             bp = bdb.Breakpoint.bpbynumber[i]
  418.             if bp:
  419.                 bp.disable()
  420.                 continue
  421.             0
  422.         
  423.  
  424.     
  425.     def do_condition(self, arg):
  426.         args = arg.split(' ', 1)
  427.         bpnum = int(args[0].strip())
  428.         
  429.         try:
  430.             cond = args[1]
  431.         except:
  432.             cond = None
  433.  
  434.         bp = bdb.Breakpoint.bpbynumber[bpnum]
  435.         if bp:
  436.             bp.cond = cond
  437.             if not cond:
  438.                 print 'Breakpoint', bpnum, 'is now unconditional.'
  439.             
  440.         
  441.  
  442.     
  443.     def do_ignore(self, arg):
  444.         '''arg is bp number followed by ignore count.'''
  445.         args = arg.split()
  446.         bpnum = int(args[0].strip())
  447.         
  448.         try:
  449.             count = int(args[1].strip())
  450.         except:
  451.             count = 0
  452.  
  453.         bp = bdb.Breakpoint.bpbynumber[bpnum]
  454.         if bp:
  455.             bp.ignore = count
  456.             if count > 0:
  457.                 reply = 'Will ignore next '
  458.                 if count > 1:
  459.                     reply = reply + '%d crossings' % count
  460.                 else:
  461.                     reply = reply + '1 crossing'
  462.                 print reply + ' of breakpoint %d.' % bpnum
  463.             else:
  464.                 print 'Will stop next time breakpoint', bpnum, 'is reached.'
  465.         
  466.  
  467.     
  468.     def do_clear(self, arg):
  469.         '''Three possibilities, tried in this order:
  470.         clear -> clear all breaks, ask for confirmation
  471.         clear file:lineno -> clear all breaks at file:lineno
  472.         clear bpno bpno ... -> clear breakpoints by number'''
  473.         if not arg:
  474.             
  475.             try:
  476.                 reply = raw_input('Clear all breaks? ')
  477.             except EOFError:
  478.                 reply = 'no'
  479.  
  480.             reply = reply.strip().lower()
  481.             if reply in ('y', 'yes'):
  482.                 self.clear_all_breaks()
  483.             
  484.             return None
  485.         
  486.         if ':' in arg:
  487.             i = arg.rfind(':')
  488.             filename = arg[:i]
  489.             arg = arg[i + 1:]
  490.             
  491.             try:
  492.                 lineno = int(arg)
  493.             except:
  494.                 err = 'Invalid line number (%s)' % arg
  495.  
  496.             err = self.clear_break(filename, lineno)
  497.             if err:
  498.                 print '***', err
  499.             
  500.             return None
  501.         
  502.         numberlist = arg.split()
  503.         for i in numberlist:
  504.             if i <= i:
  505.                 pass
  506.             elif not i < len(bdb.Breakpoint.bpbynumber):
  507.                 print 'No breakpoint numbered', i
  508.                 continue
  509.             
  510.             err = self.clear_bpbynumber(i)
  511.             if err:
  512.                 print '***', err
  513.                 continue
  514.             print 'Deleted breakpoint', i
  515.         
  516.  
  517.     do_cl = do_clear
  518.     
  519.     def do_where(self, arg):
  520.         self.print_stack_trace()
  521.  
  522.     do_w = do_where
  523.     do_bt = do_where
  524.     
  525.     def do_up(self, arg):
  526.         if self.curindex == 0:
  527.             print '*** Oldest frame'
  528.         else:
  529.             self.curindex = self.curindex - 1
  530.             self.curframe = self.stack[self.curindex][0]
  531.             self.print_stack_entry(self.stack[self.curindex])
  532.             self.lineno = None
  533.  
  534.     do_u = do_up
  535.     
  536.     def do_down(self, arg):
  537.         if self.curindex + 1 == len(self.stack):
  538.             print '*** Newest frame'
  539.         else:
  540.             self.curindex = self.curindex + 1
  541.             self.curframe = self.stack[self.curindex][0]
  542.             self.print_stack_entry(self.stack[self.curindex])
  543.             self.lineno = None
  544.  
  545.     do_d = do_down
  546.     
  547.     def do_step(self, arg):
  548.         self.set_step()
  549.         return 1
  550.  
  551.     do_s = do_step
  552.     
  553.     def do_next(self, arg):
  554.         self.set_next(self.curframe)
  555.         return 1
  556.  
  557.     do_n = do_next
  558.     
  559.     def do_return(self, arg):
  560.         self.set_return(self.curframe)
  561.         return 1
  562.  
  563.     do_r = do_return
  564.     
  565.     def do_continue(self, arg):
  566.         self.set_continue()
  567.         return 1
  568.  
  569.     do_c = do_cont = do_continue
  570.     
  571.     def do_jump(self, arg):
  572.         if self.curindex + 1 != len(self.stack):
  573.             print '*** You can only jump within the bottom frame'
  574.             return None
  575.         
  576.         
  577.         try:
  578.             arg = int(arg)
  579.         except ValueError:
  580.             print "*** The 'jump' command requires a line number."
  581.  
  582.         
  583.         try:
  584.             self.curframe.f_lineno = arg
  585.             self.stack[self.curindex] = (self.stack[self.curindex][0], arg)
  586.             self.print_stack_entry(self.stack[self.curindex])
  587.         except ValueError:
  588.             e = None
  589.             print '*** Jump failed:', e
  590.  
  591.  
  592.     do_j = do_jump
  593.     
  594.     def do_debug(self, arg):
  595.         sys.settrace(None)
  596.         globals = self.curframe.f_globals
  597.         locals = self.curframe.f_locals
  598.         p = Pdb()
  599.         p.prompt = '(%s) ' % self.prompt.strip()
  600.         print 'ENTERING RECURSIVE DEBUGGER'
  601.         sys.call_tracing(p.run, (arg, globals, locals))
  602.         print 'LEAVING RECURSIVE DEBUGGER'
  603.         sys.settrace(self.trace_dispatch)
  604.         self.lastcmd = p.lastcmd
  605.  
  606.     
  607.     def do_quit(self, arg):
  608.         self._user_requested_quit = 1
  609.         self.set_quit()
  610.         return 1
  611.  
  612.     do_q = do_quit
  613.     do_exit = do_quit
  614.     
  615.     def do_EOF(self, arg):
  616.         print 
  617.         self._user_requested_quit = 1
  618.         self.set_quit()
  619.         return 1
  620.  
  621.     
  622.     def do_args(self, arg):
  623.         f = self.curframe
  624.         co = f.f_code
  625.         dict = f.f_locals
  626.         n = co.co_argcount
  627.         if co.co_flags & 4:
  628.             n = n + 1
  629.         
  630.         if co.co_flags & 8:
  631.             n = n + 1
  632.         
  633.         for i in range(n):
  634.             name = co.co_varnames[i]
  635.             print name, '=',
  636.             if name in dict:
  637.                 print dict[name]
  638.                 continue
  639.             print '*** undefined ***'
  640.         
  641.  
  642.     do_a = do_args
  643.     
  644.     def do_retval(self, arg):
  645.         if '__return__' in self.curframe.f_locals:
  646.             print self.curframe.f_locals['__return__']
  647.         else:
  648.             print '*** Not yet returned!'
  649.  
  650.     do_rv = do_retval
  651.     
  652.     def _getval(self, arg):
  653.         
  654.         try:
  655.             return eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  656.         except:
  657.             (t, v) = sys.exc_info()[:2]
  658.             if isinstance(t, str):
  659.                 exc_type_name = t
  660.             else:
  661.                 exc_type_name = t.__name__
  662.             print '***', exc_type_name + ':', repr(v)
  663.             raise 
  664.  
  665.  
  666.     
  667.     def do_p(self, arg):
  668.         
  669.         try:
  670.             print repr(self._getval(arg))
  671.         except:
  672.             pass
  673.  
  674.  
  675.     
  676.     def do_pp(self, arg):
  677.         
  678.         try:
  679.             pprint.pprint(self._getval(arg))
  680.         except:
  681.             pass
  682.  
  683.  
  684.     
  685.     def do_list(self, arg):
  686.         self.lastcmd = 'list'
  687.         last = None
  688.         if arg:
  689.             
  690.             try:
  691.                 x = eval(arg, { }, { })
  692.                 if type(x) == type(()):
  693.                     (first, last) = x
  694.                     first = int(first)
  695.                     last = int(last)
  696.                     if last < first:
  697.                         last = first + last
  698.                     
  699.                 else:
  700.                     first = max(1, int(x) - 5)
  701.             print '*** Error in argument:', repr(arg)
  702.             return None
  703.  
  704.         elif self.lineno is None:
  705.             first = max(1, self.curframe.f_lineno - 5)
  706.         else:
  707.             first = self.lineno + 1
  708.         if last is None:
  709.             last = first + 10
  710.         
  711.         filename = self.curframe.f_code.co_filename
  712.         breaklist = self.get_file_breaks(filename)
  713.         
  714.         try:
  715.             for lineno in range(first, last + 1):
  716.                 line = linecache.getline(filename, lineno)
  717.                 if not line:
  718.                     print '[EOF]'
  719.                     break
  720.                     continue
  721.                 s = repr(lineno).rjust(3)
  722.                 if len(s) < 4:
  723.                     s = s + ' '
  724.                 
  725.                 if lineno in breaklist:
  726.                     s = s + 'B'
  727.                 else:
  728.                     s = s + ' '
  729.                 if lineno == self.curframe.f_lineno:
  730.                     s = s + '->'
  731.                 
  732.                 print s + '\t' + line,
  733.                 self.lineno = lineno
  734.         except KeyboardInterrupt:
  735.             pass
  736.  
  737.  
  738.     do_l = do_list
  739.     
  740.     def do_whatis(self, arg):
  741.         
  742.         try:
  743.             value = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  744.         except:
  745.             (t, v) = sys.exc_info()[:2]
  746.             if type(t) == type(''):
  747.                 exc_type_name = t
  748.             else:
  749.                 exc_type_name = t.__name__
  750.             print '***', exc_type_name + ':', repr(v)
  751.             return None
  752.  
  753.         code = None
  754.         
  755.         try:
  756.             code = value.func_code
  757.         except:
  758.             pass
  759.  
  760.         if code:
  761.             print 'Function', code.co_name
  762.             return None
  763.         
  764.         
  765.         try:
  766.             code = value.im_func.func_code
  767.         except:
  768.             pass
  769.  
  770.         if code:
  771.             print 'Method', code.co_name
  772.             return None
  773.         
  774.         print type(value)
  775.  
  776.     
  777.     def do_alias(self, arg):
  778.         args = arg.split()
  779.         if len(args) == 0:
  780.             keys = self.aliases.keys()
  781.             keys.sort()
  782.             for alias in keys:
  783.                 print '%s = %s' % (alias, self.aliases[alias])
  784.             
  785.             return None
  786.         
  787.         if args[0] in self.aliases and len(args) == 1:
  788.             print '%s = %s' % (args[0], self.aliases[args[0]])
  789.         else:
  790.             self.aliases[args[0]] = ' '.join(args[1:])
  791.  
  792.     
  793.     def do_unalias(self, arg):
  794.         args = arg.split()
  795.         if len(args) == 0:
  796.             return None
  797.         
  798.         if args[0] in self.aliases:
  799.             del self.aliases[args[0]]
  800.         
  801.  
  802.     
  803.     def print_stack_trace(self):
  804.         
  805.         try:
  806.             for frame_lineno in self.stack:
  807.                 self.print_stack_entry(frame_lineno)
  808.         except KeyboardInterrupt:
  809.             pass
  810.  
  811.  
  812.     
  813.     def print_stack_entry(self, frame_lineno, prompt_prefix = line_prefix):
  814.         (frame, lineno) = frame_lineno
  815.         if frame is self.curframe:
  816.             print '>',
  817.         else:
  818.             print ' ',
  819.         print self.format_stack_entry(frame_lineno, prompt_prefix)
  820.  
  821.     
  822.     def help_help(self):
  823.         self.help_h()
  824.  
  825.     
  826.     def help_h(self):
  827.         print 'h(elp)\nWithout argument, print the list of available commands.\nWith a command name as argument, print help about that command\n"help pdb" pipes the full documentation file to the $PAGER\n"help exec" gives help on the ! command'
  828.  
  829.     
  830.     def help_where(self):
  831.         self.help_w()
  832.  
  833.     
  834.     def help_w(self):
  835.         print 'w(here)\nPrint a stack trace, with the most recent frame at the bottom.\nAn arrow indicates the "current frame", which determines the\ncontext of most commands.  \'bt\' is an alias for this command.'
  836.  
  837.     help_bt = help_w
  838.     
  839.     def help_down(self):
  840.         self.help_d()
  841.  
  842.     
  843.     def help_d(self):
  844.         print 'd(own)\nMove the current frame one level down in the stack trace\n(to a newer frame).'
  845.  
  846.     
  847.     def help_up(self):
  848.         self.help_u()
  849.  
  850.     
  851.     def help_u(self):
  852.         print 'u(p)\nMove the current frame one level up in the stack trace\n(to an older frame).'
  853.  
  854.     
  855.     def help_break(self):
  856.         self.help_b()
  857.  
  858.     
  859.     def help_b(self):
  860.         print "b(reak) ([file:]lineno | function) [, condition]\nWith a line number argument, set a break there in the current\nfile.  With a function name, set a break at first executable line\nof that function.  Without argument, list all breaks.  If a second\nargument is present, it is a string specifying an expression\nwhich must evaluate to true before the breakpoint is honored.\n\nThe line number may be prefixed with a filename and a colon,\nto specify a breakpoint in another file (probably one that\nhasn't been loaded yet).  The file is searched for on sys.path;\nthe .py suffix may be omitted."
  861.  
  862.     
  863.     def help_clear(self):
  864.         self.help_cl()
  865.  
  866.     
  867.     def help_cl(self):
  868.         print 'cl(ear) filename:lineno'
  869.         print 'cl(ear) [bpnumber [bpnumber...]]\nWith a space separated list of breakpoint numbers, clear\nthose breakpoints.  Without argument, clear all breaks (but\nfirst ask confirmation).  With a filename:lineno argument,\nclear all breaks at that line in that file.\n\nNote that the argument is different from previous versions of\nthe debugger (in python distributions 1.5.1 and before) where\na linenumber was used instead of either filename:lineno or\nbreakpoint numbers.'
  870.  
  871.     
  872.     def help_tbreak(self):
  873.         print 'tbreak  same arguments as break, but breakpoint is\nremoved when first hit.'
  874.  
  875.     
  876.     def help_enable(self):
  877.         print 'enable bpnumber [bpnumber ...]\nEnables the breakpoints given as a space separated list of\nbp numbers.'
  878.  
  879.     
  880.     def help_disable(self):
  881.         print 'disable bpnumber [bpnumber ...]\nDisables the breakpoints given as a space separated list of\nbp numbers.'
  882.  
  883.     
  884.     def help_ignore(self):
  885.         print 'ignore bpnumber count\nSets the ignore count for the given breakpoint number.  A breakpoint\nbecomes active when the ignore count is zero.  When non-zero, the\ncount is decremented each time the breakpoint is reached and the\nbreakpoint is not disabled and any associated condition evaluates\nto true.'
  886.  
  887.     
  888.     def help_condition(self):
  889.         print 'condition bpnumber str_condition\nstr_condition is a string specifying an expression which\nmust evaluate to true before the breakpoint is honored.\nIf str_condition is absent, any existing condition is removed;\ni.e., the breakpoint is made unconditional.'
  890.  
  891.     
  892.     def help_step(self):
  893.         self.help_s()
  894.  
  895.     
  896.     def help_s(self):
  897.         print 's(tep)\nExecute the current line, stop at the first possible occasion\n(either in a function that is called or in the current function).'
  898.  
  899.     
  900.     def help_next(self):
  901.         self.help_n()
  902.  
  903.     
  904.     def help_n(self):
  905.         print 'n(ext)\nContinue execution until the next line in the current function\nis reached or it returns.'
  906.  
  907.     
  908.     def help_return(self):
  909.         self.help_r()
  910.  
  911.     
  912.     def help_r(self):
  913.         print 'r(eturn)\nContinue execution until the current function returns.'
  914.  
  915.     
  916.     def help_continue(self):
  917.         self.help_c()
  918.  
  919.     
  920.     def help_cont(self):
  921.         self.help_c()
  922.  
  923.     
  924.     def help_c(self):
  925.         print 'c(ont(inue))\nContinue execution, only stop when a breakpoint is encountered.'
  926.  
  927.     
  928.     def help_jump(self):
  929.         self.help_j()
  930.  
  931.     
  932.     def help_j(self):
  933.         print 'j(ump) lineno\nSet the next line that will be executed.'
  934.  
  935.     
  936.     def help_debug(self):
  937.         print 'debug code\nEnter a recursive debugger that steps through the code argument\n(which is an arbitrary expression or statement to be executed\nin the current environment).'
  938.  
  939.     
  940.     def help_list(self):
  941.         self.help_l()
  942.  
  943.     
  944.     def help_l(self):
  945.         print 'l(ist) [first [,last]]\nList source code for the current file.\nWithout arguments, list 11 lines around the current line\nor continue the previous listing.\nWith one argument, list 11 lines starting at that line.\nWith two arguments, list the given range;\nif the second argument is less than the first, it is a count.'
  946.  
  947.     
  948.     def help_args(self):
  949.         self.help_a()
  950.  
  951.     
  952.     def help_a(self):
  953.         print 'a(rgs)\nPrint the arguments of the current function.'
  954.  
  955.     
  956.     def help_p(self):
  957.         print 'p expression\nPrint the value of the expression.'
  958.  
  959.     
  960.     def help_pp(self):
  961.         print 'pp expression\nPretty-print the value of the expression.'
  962.  
  963.     
  964.     def help_exec(self):
  965.         print "(!) statement\nExecute the (one-line) statement in the context of\nthe current stack frame.\nThe exclamation point can be omitted unless the first word\nof the statement resembles a debugger command.\nTo assign to a global variable you must always prefix the\ncommand with a 'global' command, e.g.:\n(Pdb) global list_options; list_options = ['-l']\n(Pdb)"
  966.  
  967.     
  968.     def help_quit(self):
  969.         self.help_q()
  970.  
  971.     
  972.     def help_q(self):
  973.         print 'q(uit) or exit - Quit from the debugger.\nThe program being executed is aborted.'
  974.  
  975.     help_exit = help_q
  976.     
  977.     def help_whatis(self):
  978.         print 'whatis arg\nPrints the type of the argument.'
  979.  
  980.     
  981.     def help_EOF(self):
  982.         print 'EOF\nHandles the receipt of EOF as a command.'
  983.  
  984.     
  985.     def help_alias(self):
  986.         print 'alias [name [command [parameter parameter ...] ]]\nCreates an alias called \'name\' the executes \'command\'.  The command\nmust *not* be enclosed in quotes.  Replaceable parameters are\nindicated by %1, %2, and so on, while %* is replaced by all the\nparameters.  If no command is given, the current alias for name\nis shown. If no name is given, all aliases are listed.\n\nAliases may be nested and can contain anything that can be\nlegally typed at the pdb prompt.  Note!  You *can* override\ninternal pdb commands with aliases!  Those internal commands\nare then hidden until the alias is removed.  Aliasing is recursively\napplied to the first word of the command line; all other words\nin the line are left alone.\n\nSome useful aliases (especially when placed in the .pdbrc file) are:\n\n#Print instance variables (usage "pi classInst")\nalias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k]\n\n#Print instance variables in self\nalias ps pi self\n'
  987.  
  988.     
  989.     def help_unalias(self):
  990.         print 'unalias name\nDeletes the specified alias.'
  991.  
  992.     
  993.     def help_pdb(self):
  994.         help()
  995.  
  996.     
  997.     def lookupmodule(self, filename):
  998.         '''Helper function for break/clear parsing -- may be overridden.
  999.  
  1000.         lookupmodule() translates (possibly incomplete) file or module name
  1001.         into an absolute file name.
  1002.         '''
  1003.         if os.path.isabs(filename) and os.path.exists(filename):
  1004.             return filename
  1005.         
  1006.         f = os.path.join(sys.path[0], filename)
  1007.         if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
  1008.             return f
  1009.         
  1010.         (root, ext) = os.path.splitext(filename)
  1011.         if ext == '':
  1012.             filename = filename + '.py'
  1013.         
  1014.         if os.path.isabs(filename):
  1015.             return filename
  1016.         
  1017.         for dirname in sys.path:
  1018.             while os.path.islink(dirname):
  1019.                 dirname = os.readlink(dirname)
  1020.             fullname = os.path.join(dirname, filename)
  1021.             if os.path.exists(fullname):
  1022.                 return fullname
  1023.                 continue
  1024.         
  1025.  
  1026.     
  1027.     def _runscript(self, filename):
  1028.         globals_ = {
  1029.             '__name__': '__main__' }
  1030.         locals_ = globals_
  1031.         self._wait_for_mainpyfile = 1
  1032.         self.mainpyfile = self.canonic(filename)
  1033.         self._user_requested_quit = 0
  1034.         statement = 'execfile( "%s")' % filename
  1035.         self.run(statement, globals = globals_, locals = locals_)
  1036.  
  1037.  
  1038.  
  1039. def run(statement, globals = None, locals = None):
  1040.     Pdb().run(statement, globals, locals)
  1041.  
  1042.  
  1043. def runeval(expression, globals = None, locals = None):
  1044.     return Pdb().runeval(expression, globals, locals)
  1045.  
  1046.  
  1047. def runctx(statement, globals, locals):
  1048.     run(statement, globals, locals)
  1049.  
  1050.  
  1051. def runcall(*args, **kwds):
  1052.     return Pdb().runcall(*args, **kwds)
  1053.  
  1054.  
  1055. def set_trace():
  1056.     Pdb().set_trace(sys._getframe().f_back)
  1057.  
  1058.  
  1059. def post_mortem(t):
  1060.     p = Pdb()
  1061.     p.reset()
  1062.     while t.tb_next is not None:
  1063.         t = t.tb_next
  1064.     p.interaction(t.tb_frame, t)
  1065.  
  1066.  
  1067. def pm():
  1068.     post_mortem(sys.last_traceback)
  1069.  
  1070. TESTCMD = 'import x; x.main()'
  1071.  
  1072. def test():
  1073.     run(TESTCMD)
  1074.  
  1075.  
  1076. def help():
  1077.     for dirname in sys.path:
  1078.         fullname = os.path.join(dirname, 'pdb.doc')
  1079.         if os.path.exists(fullname):
  1080.             sts = os.system('${PAGER-more} ' + fullname)
  1081.             if sts:
  1082.                 print '*** Pager exit status:', sts
  1083.             
  1084.             break
  1085.             continue
  1086.     else:
  1087.         print 'Sorry, can\'t find the help file "pdb.doc"', 'along the Python search path'
  1088.  
  1089.  
  1090. def main():
  1091.     if not sys.argv[1:]:
  1092.         print 'usage: pdb.py scriptfile [arg] ...'
  1093.         sys.exit(2)
  1094.     
  1095.     mainpyfile = sys.argv[1]
  1096.     if not os.path.exists(mainpyfile):
  1097.         print 'Error:', mainpyfile, 'does not exist'
  1098.         sys.exit(1)
  1099.     
  1100.     del sys.argv[0]
  1101.     sys.path[0] = os.path.dirname(mainpyfile)
  1102.     pdb = Pdb()
  1103.     while None:
  1104.         
  1105.         try:
  1106.             pdb._runscript(mainpyfile)
  1107.             if pdb._user_requested_quit:
  1108.                 break
  1109.             
  1110.             print 'The program finished and will be restarted'
  1111.         continue
  1112.         except SystemExit:
  1113.             print 'The program exited via sys.exit(). Exit status: ', sys.exc_info()[1]
  1114.             continue
  1115.             traceback.print_exc()
  1116.             print 'Uncaught exception. Entering post mortem debugging'
  1117.             print "Running 'cont' or 'step' will restart the program"
  1118.             t = sys.exc_info()[2]
  1119.             while t.tb_next is not None:
  1120.                 t = t.tb_next
  1121.             pdb.interaction(t.tb_frame, t)
  1122.             print 'Post mortem debugger finished. The ' + mainpyfile + ' will be restarted'
  1123.             continue
  1124.         
  1125.  
  1126.  
  1127. if __name__ == '__main__':
  1128.     main()
  1129.  
  1130.